github.com/andybalholm/brotli/matchfinder.Bargain1.history (field)

13 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		bargain1.go#L24: 	history []byte
		bargain1.go#L35: 	z.history = z.history[:0]
		bargain1.go#L66: 	if len(z.history) > z.MaxDistance*2 {
		bargain1.go#L67: 		delta := len(z.history) - z.MaxDistance
		bargain1.go#L68: 		copy(z.history, z.history[delta:])
		bargain1.go#L69: 		z.history = z.history[:z.MaxDistance]
		bargain1.go#L82: 	historyLen := len(z.history)
		bargain1.go#L83: 	z.history = append(z.history, src...)
		bargain1.go#L84: 	src = z.history